home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
sal100
/
insert.src
< prev
next >
Wrap
Text File
|
1993-06-04
|
199b
|
16 lines
void insertion()
{
int a;
int b;
for(a=1; a < ARRAYSIZE; a++)
{
b = a;
while (Vektor[b] < Vektor[b-1] && b > 0)
{
SwapNumbers(b,b-1);
b--;
}
}
}